home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT2.SPK
/
test
/
test_b
/
c
/
unused
< prev
Wrap
Text File
|
1996-08-28
|
351b
|
29 lines
typedef int *dumbtype;
typedef struct _st
{
int x;
int y;
int dumb;
struct _inner
{
int l;
int m;
int silly;
} inner;
} st;
extern int undef (int x);
static int r (void);
static int f (int x, st stx)
{
return (x + stx.x + stx.y + stx.inner.l + stx.inner.m + r());
}
static int r (void)
{
return undef (3);
}